To solve this issue, one will have to disable EL using

<jsp-config>
    <jsp-property-group>
      <url-pattern>*.jsp</url-pattern>
      <el-ignored>true</el-ignored>
    </jsp-property-group>
  </jsp-config>

in web.xml

Thanks to Richard Wallace for the answer.